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

    max-width: 450px;
}

.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.logo p {
    color: var(--gray-color);
}

.card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    margin-bottom: 20px;
}

.card-header {
    text-align: center;
    margin-bottom: 25px;
}

.card-header h2 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.card-header p {
    color: var(--gray-color);
}

.divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #eaeaea;
}

.divider span {
    padding: 0 15px;
    color: var(--gray-color);
    font-size: 14px;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #eaeaea;
    border-radius: var(--border-radius);
    background-color: white;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    width: 100%;
}

.social-btn:hover {
    background-color: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tabs {
    display: flex;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 20px;
}

.tab {
    flex: 1;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    font-weight: 600;
}

.tab.active {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray-color);
    cursor: pointer;
}

.terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.terms input[type="checkbox"] {
    margin-top: 3px;
}

.terms label {
    font-size: 14px;
    color: var(--gray-color);
}

.terms a {
    color: var(--primary-color);
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

.message {
    padding: 12px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    text-align: center;
}

.message-success {
    background-color: rgba(46, 204, 113, 0.2);
    color: var(--success-color);
}

.message-error {
    background-color: rgba(231, 76, 60, 0.2);
    color: var(--danger-color);
}

@media (max-width: 480px) {
    .card {
        padding: 20px;
    }
}