@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

.navbar{
    margin-bottom: 0;
    border-radius: 0;
}

.navbar .container-fluid{
    height: 80%;
    background: linear-gradient(to right, #0051ff, #001c68);
}


.logo{
    width: 100%;
    height: 50px;
    overflow: hidden;
}

.logoalgn{
    position: relative;
    width: 110px;
    height: 107px
}


body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to right, #0051ff, #001c68);
}

.login-box {
    width: 320px;
    max-width: 90%;
    background: #fff;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 100);
    margin: 0 auto;
    padding: 30px;
    box-sizing: border-box;
}

.login-box .iconUser {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
}

.login-box h1 {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.login-box label {
    display: block;
    margin-bottom: 5px;
    color: #242424;
    font-weight: bold;  
}


.login-box input[type="text"],
.login-box input[type="password"] {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid #000000;
    outline: none;
    background: transparent;
    box-sizing: border-box;
}

.password-input {
    position: relative;
}

.password-input input[type="password"] {
    padding-right: 35px;
}

.password-input i {
    position: absolute;
    top: 35%;
    right: 5%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #2c2c2c;
}

.user-input input:focus,
.password-input input:focus {
    border-bottom-color: #0051ff; 
}

.login-box input[type="submit"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: #0051ff;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.login-box input[type="submit"]:hover {
    background: #001c68;
}

.login-box input[type="submit"]:active{
    transform: scale(0.95);
}

