﻿body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #dde7ff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 0 !important;
}


.login-container {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 40px 30px;
    max-width: 400px;
    z-index: 2;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    height: 80px;
}

h2 {
    font-size: 22px;
    color: #2b1966;
    text-align: center;
}

.subtitle {
    font-size: 14px;
    color: #4a4a4a;
    margin-bottom: 30px;
    text-align: center;
}

.input-group .form-control {
    background: #f9f9f9;
    border-radius: 12px;
    border: none;
    color: #2b1966;
    padding-left: 38px;
}

.input-group-addon {
    background: transparent;
    border: none;
    color: #7450ff;
}

.input-group i {
    font-size: 16px;
}

.footer-text {
    font-size: 13px;
    text-align: center;
    margin-top: 20px;
}

.footer-text a {
    color: #7450ff;
    text-decoration: none;
}

/* Textboxes */
.form-control {
    border-radius: 8px!important; 
    border: 1px solid #ccc!important; 
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075)!important; 
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s!important; ; 
    padding: 10px 12px!important; 
}

.form-control:focus {
    border-color: #66afe9!important; ; 
    outline: 0!important; ;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6)!important; 
}


.btn-login { 
    background-color: #FFEB00!important; 
    border-color: #E6D400!important; 
    color: #333!important; 
    border-radius: 20px!important; 
    padding: 10px 20px!important; 
    font-size: 18px!important; 
    font-weight: bold!important;
    transition: background-color 0.2s ease, border-color 0.2s ease!important; 
}

.btn-login:hover,
.btn-login:focus {
    background-color: #FFD700!important; 
    border-color: #CCA800!important; 
    color: #333!important;
}

.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
  z-index: 0;
}

.blob.pink {
  background: #ff66b3;
  width: 80px;
  height: 80px;
  top: 10%;
  left: 5%;
}

.blob.blue {
  background: #2d5fff;
  width: 60px;
  height: 60px;
  bottom: 15%;
  right: 10%;
}

.blob.yellow {
  background: #ffdf2b;
  width: 150px;
  height: 150px;
  bottom: -20px;
  left: -50px;
}