* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    height: 100vh;
    display: flex;
}

/* LEFT */
.left {
    flex: 1;
    background: url('https://images.unsplash.com/photo-1584982751601-97dcc096659c') no-repeat center/cover;
    color: white;
    display: flex;
    align-items: center;
    padding: 60px;
    position: relative;
}

.left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.8), rgba(92, 137, 205, 0.7));
}

.left-content {
    position: relative;
    z-index: 2;
}

.left h2 {
    font-size: 40px;
    margin: 15px 0;
}

/* RIGHT */
.right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8fbff;
}

/* CARD */
.signup-card {
    width: 400px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 82, 204, 0.15);
}

.logo {
    text-align: center;
    color: #0052CC;
    font-weight: 600;
}

.signup-card h3 {
    text-align: center;
    margin: 10px 0 20px;
}

/* FORM */
input {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* ROW */
.form-row {
    display: flex;
    gap: 10px;
}

/* PASSWORD */
.password-field {
    position: relative;
    width: 100%;
}

.password-field i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* BUTTON */
button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #0052CC, #5C89CD);
    color: white;
    cursor: pointer;
}

/* DIVIDER */
.divider {
    text-align: center;
    margin: 15px 0;
    font-size: 12px;
    color: #64748b;
}
.divider a{
    color: #0052CC;
}

/* GOOGLE */
.google {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
}

/* ERROR */
.error {
    display: none;
    background: #fee2e2;
    color: #7f1d1d;
    padding: 8px;
    border-radius: 8px;
    font-size: 12px;
}

.error.active {
    display: block;
}

/* SUCCESS */
.success {
    display: none;
    background: #d1fae5;
    color: #065f46;
    padding: 8px;
    border-radius: 8px;
    font-size: 12px;
}

.success.active {
    display: block;
}

/* RESPONSIVE */
@media(max-width:900px) {
    body {
        flex-direction: column;
    }

    .left {
        height: 40vh;
    }

    .right {
        height: 60vh;
    }

    .form-row {
        flex-direction: column;
    }
}