* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body { 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    background-color: rgb(136, 248, 155);
    font-family: Arial, sans-serif; 
    background: #93FF92;
    background: linear-gradient(135deg, #93FF92, #FFCF86);
}


.loginBox {
    width: 80%;
    max-width: 500px;
    padding: 5rem;
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); 
    border-radius: 10px; 
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.loginHeader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}
#instName {
    font-size: 10px;
    color: #000000;
}

#logName{
    margin-top: 10px;
}

.loginFields {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.loginInput {
    width: 100%;
    height: 50px;
    padding: 0 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.loginInputButton {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 50px;
    padding: 0 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.loginInputButton button{
    width: 100px;
    height: 40px;
    background-color:#0066eb;
    border: none;
    border-radius: 2px;
    color: white;
    margin-top: 10px;
}

.loginInputButton button:hover{
    width: 100px;
    height: 40px;
    background-color:#0150b8;
    border: none;
    border-radius: 9px;
    color: white;
    transition: 0.5s;
    margin-top: 10px;
}

.loginInput:focus {
    outline: none;
    border-color: #66cc66;
}

.loginInput p{
    font-size: 12px;
    margin-top: 10px;
    color: rgba(0, 0, 0, 0.37);
    text-align: center;
}

input {
    border: none;
    outline: none;
    border-bottom: 1px #666666 solid;
}

input:hover{
    border-bottom: 1px #1178ff solid;
    transition: 0.8s;
}


button:focus { outline: none; }