*{
    box-sizing: border-box;
}

body{
    margin: 0 !important;
    padding: 0;
    font-family: 'Roboto', sans-serif !important;
    background: #f0f0f0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.forgot-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
    height: auto;
    border-radius: 10px;
}

.forgot-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    background: lightgray;
}

.forgot-header img{
    width: 200px;
    height: auto;
}

.forgot-header h1{
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin-top: -20px;
    margin-bottom: 20px;
}

.forgot-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #fff;
    padding: 20px;
    gap: 20px;
}
.forgot-form-group{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 3px;
}

.forgot-form-security{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.forgot-label{
    font-size: 14px;
    font-weight: 500;
    color: #333;
    align-self: flex-start;
}

.forgot-input{
    width: 100%;
    height: 40px;
    padding: 10px;
    border: 1px solid lightgray;
    border-radius: 5px;
    outline: none;
    font-size: 14px;
}

.forgot-input:focus{
    border: 1px solid #119547;
}

.forgot-input:disabled{
    background: #f0f0f0;
}

.forgot-info{
    font-size: smaller;
    color: red;
    font-weight: 400;
    align-self: flex-start;
}

.btn-submit{
    width: 60%;
    height: 40px;
    background: #288AC9;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
    margin-top: 20px;
}
.btn-submit:hover{
    background: #288bc9cf
}

.btn-submit:disabled{
    background: #288bc9a1;
    cursor: not-allowed;
}