* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Body */
body {
    min-height: 100vh;
    background: #eef5fb;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Wrapper */
.sp-login-wrapper {
    width: 100%;
    max-width: 1100px;
    background-color: #90b6dd;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Left Section */
.sp-login-left {
    width: 50%;
    background: #90b6dd;
    display: flex;
    justify-content: center;
    align-items: center;
    /*padding: 40px;*/
    padding: 25px;
}

.sp-login-image {
    width: 100%;
    /*max-width: 420px;*/
}

/* Right Section */
.sp-login-right {
    width: 50%;
    /*padding: 50px;*/
    padding: 30px;
    background-color: #90b6dd;
}

/* Brand */
.sp-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 40px;
}

.sp-brand img {
    width: 100%;
    max-width: 280px;   /* Desktop limit */
    height: auto;
}
.sp-forgot{
    font-size: 13px;
    margin-bottom: 25px;
}
/* Titles */
.sp-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.sp-subtitle {
    color: #6b7280;
    margin-bottom: 30px;
}

/* Social Buttons */
.sp-social-buttons {
    display: flex;
    gap: 15px;
}
.sp-input-icon-wrapper {
    position: relative;
}

.sp-input-password {
    padding-right: 45px;
}

.sp-eye-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #6b7280;
}

.sp-eye-toggle:hover {
    color: #2563eb;
}

.sp-btn {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
}

.sp-btn-login {
    background: #0d6efd;
    border: none;
    color: #ffffff;
    padding: 10px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}
.sp-btn-bck-login{
    background-color: #e5e7eb;
    border-radius: 30px;
    padding: 10px;
    margin-top: 10px;
}
.sp-btn-bck-login:hover{
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
}
/* Divider */
.sp-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    font-size: 14px;
    color: #9ca3af;
}

.sp-divider::before,
.sp-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.sp-divider span {
    padding: 0 12px;
    color: black;
}

/* Form */
.sp-form-group {
    margin-bottom: 18px;
}

.sp-label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 500;
}

.sp-input {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    font-size: 15px;
    outline: none;
    background-color: #eef5fb;
}

.sp-input:focus {
    border-color: #2563eb;
}

/* Options */
.sp-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin: 15px 0 25px;
}

.sp-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Links */
.sp-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

/* Signup */
.sp-signup-text {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}
.success{
    width: 100%;
    max-width: 485px;
    display: flex;
    justify-content: center;
    background-color: #90b6dd;
    padding: 10px 10px 10px 10px;
    border-radius: 30px;
}
.sc-wrapper {
    width: 100%;
    max-width: 420px;
    text-align: center;
}

/* Logo */
.sc-logo img {
    width: 230px;
    margin-bottom: 25px;
}

/* Card */
.sc-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Success Icon */
.sc-success-icon {
    width: 50px;
    height: 50px;
    background: #22c55e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.sc-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.sc-text {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

/* Button */
.sc-btn {
    width: 100%;
    background: #f97316;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.sc-btn:hover {
    background: #ea580c;
}

/* Footer */
.sc-footer {
    margin-top: 20px;
    font-size: 13px;
    color: #000000;
}

/* Responsive */
@media (max-width: 480px) {
    .sc-card {
        padding: 25px 20px;
    }

    .sc-title {
        font-size: 18px;
    }
}
/* Responsive */
@media (max-width: 900px) {
    .sp-login-wrapper {
        flex-direction: column;
    }

    .sp-login-left,
    .sp-login-right {
        width: 100%;
    }

    .sp-login-right {
        /*padding: 30px;*/
        padding: 20px;
    }

    .sp-login-left {
        /*padding: 30px;*/
        padding: 15px;
    }
}
/* Alert design */
.sp-alert {
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-size: 14px;
}

.sp-alert-danger {
    background: #f8d7da;
    color: #721c24;
}

.sp-alert-success {
    background: #d4edda;
    color: #155724;
}


