body,html{
    height:100%;
    margin:0;
    font-family: 'Nunito Sans',sans-serif;
    overflow: hidden;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login_wrap{
    width: 100%;
    max-width: 400px;
    padding: 20px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 10px #04625f;
}

.heading_s1 h3{
    margin:0;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.form-group{
    margin-bottom:15px;
}

.otp-timer{
    display: inline-block;
    margin-left: 10px;
    font-size: 14px;
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    background-color: #e7ab3c;
    border: 2px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#timerValue{
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: white;
    line-height: 60px;
}

#timerValue.expired{
    font-size: 14px;
    color:red;
}

.btn-primary{
    background-color: #36B5B1;
    border: none;
    width: 100%;
    margin-top: 10px;
    display: block;
}

.btn-primary:hover{
    background-color: #7eddda;
}

.btn-secondary{
    width: 100%;
    background-color: #6c757d;
    border: none;
    margin-top: 10px;
    display: block;
    padding: 0.5rem;
    border-radius: 5px;
    color:white;
}

.btn-secondary:hover{
    background-color: #5a6268;
}

.alert-danger{
    margin-top: 15px;
    text-align: center;
}

.text-center{
    text-align: center;
    margin-top: 15px;
}

.text-muted{
    color: #6c757d;
    text-align: center;
}

.pt-25{
    padding-top: 25px;
}