body{
    font-family: 'poopins', sans-serif;
    background: url(../images/login_bg12.avif) no-repeat center center fixed;
    /* background: url('https://source.unsplash.com/1600x900/?technology,abstract') no-repeat center center fixed; */
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.login-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.login-container input[type="text"],
.login-container input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.login-container button:hover {
  background-color: #558cd1;
}

.form-container{
    background: #4698f0;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 10px 50px 20px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 600px;
}

.heading{
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    color: orangered;
    font-size: 50px;
    font-weight: bold;
    text-decoration: underline;
    
}

.sub-heading{
    text-align: center;
    color:#666
}

.error-message{
    color:black;
    font-size: 20px;
    text-align: center;
    border: 2px solid red;
    border-radius: 6px;
    background-color: red;
}

.form-floating{
    position: relative;
    margin-bottom: 15px;
}

.form-floating input{
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius:5px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.7);
}

.form-floating label{
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 14px;
    transition: all 0.3 ease;
}

.form-floating input :focus + label,
.form-floating
input:not(:placeholder-shown) + label{
    top: 50px;
    font-size: 12px;
    color: rgb(235, 235, 143);
}

button{
    background-color: rgb(235, 235, 143);
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

button:hover{
    background: rgb(235, 235, 143);
}

.text-body-secondary{
    font-size: 14px;
    color: #666;
}

@media (max-with: 768px){
    .form-container{
        width: 90%;
    }
}

.btn{
    background:rgb(235, 235, 143) ;
    color: black;
}

.btn:hover{
    background:rgb(158, 122, 68) ;
}
    

