* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/*  */
.form-container {
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #ccc;
    max-width: 620px;
    margin: 60px auto;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 150px;
    font-size: 14px;
    background-color: #f9f9f9;
}

.input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #666;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: #333;
}

.checkbox-input {
    margin-right: 8px;
}

.submit-btn {
    width: 100%;
    background-color: #3660A5;
    color: white;
    border: none;
    border-radius: 150px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

.forgot-password,
.signup-link,
.or-text {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: #444;
}

    .forgot-password a,
    .signup-link a {
        color: #000;
    }

.or-text {
    margin-top: 24px;
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

    .social-icons img {
        width: 36px;
        height: 36px;
    }