
.card {
    border-radius: 10px;
    padding: 20px;
    transition: 0.3s ease-in-out;
    box-shadow: 2px 0 15px
}
.btn-success {
    background-color: green;
    border: none;
    color: white;
    font-weight: bold;
    padding: 10px;
    border-radius: 25px;
}
.btn-success:hover {
    background-color: green;
}
.btn-outline-success {
    border-color: green;
    color: green;
    font-weight: bold;
    padding: 10px;
    border-radius: 25px;
}
.btn-outline-success:hover {
    background-color: #f5f5f5;
}
.social-btn {
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}
.social-btn img {
    width: 25px;
    height: 25px;
}
.form-control {
    border-radius: 25px;
    padding: 10px;
}
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}
.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ccc;
}
.divider span {
    padding: 0 10px;
    color: #666;
}
.help-links a {
    color: green;
    text-decoration: none;
    margin-left: 15px;
}
.input-form{
    width: 350px;
}
.errorlist li{
    color: red;
}

.password-container {
    position: relative;
}
.password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

a{
    text-decoration: none;
}

@media (max-width: 576px) {
    .input-form {
        width: 100% !important;
    }
    .social-btn {
        width: 40px;
        height: 40px;
        margin: 0 5px;
    }
    .social-btn img {
        width: 20px;
        height: 20px;
    }
}
