﻿/*body.login-body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: url('../../../../Images/BgImage.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}*/
.login-logo {
    margin-bottom: 5px;
    text-align:center;

}
.login-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 2px;
    text-align:center;
    color: #0c2450;
}
.login-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
    color: #0c2450;
    text-align:center;

}
.login-container {
    background-color: #0c2450;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    color: white;
    max-width: 400px;
    width: 100%;
}
.login-input-group {
    position: relative;
    margin-bottom: 20px;
}
.login-input-group .material-icons {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #777;
}
.login-input-group input {
    width: 100%;
    padding: 12px 12px 12px 50px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    background-color: #d9d9d9;
    outline: none;
}
.login-button {
    background-color: #b8c5cb;
    border: none;
    height: 40px;
    border-radius: 50px;
    width: 100%;
    font-size: 18px;
    cursor: pointer;
    color: #0c2450;
    margin-bottom: 20px;
}
.login-links {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: white;
}
.login-footer {
    margin-top: 20px;
    font-size: 12px;
    text-align:center;
    color: #000;
}
.login-icon {
    border-radius: 50%;
    border: 1px solid grey;
    padding: 5px;
}
  .material-icons {
          border-radius: 50%;
          border: 1px solid grey;
          padding: 1px;
          margin-left:1px;
        }
  .login-input-group {
    margin-bottom: 20px;
}

.login-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px; /* fixed height to avoid shifting */
}

.login-input-wrapper i.material-icons {
    position: absolute;
    left: 15px;
    font-size: 24px;
    color: #777;
}

.login-input-wrapper .form-control {
    width: 100%;
    padding: 12px 12px 12px 50px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    background-color: #d9d9d9;
    outline: none;
    height: 40px; /* match wrapper height */
}

.validation-message {
    color: red;
    font-size: 12px;
    margin-top: 4px;
}
