﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.login-container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 400px;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease;
}

    .login-container:hover {
        transform: translateY(-5px);
    }

.logo {
    width: 80px;
    margin-bottom: 20px;
}

h1 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

.input-group {
    margin-bottom: 10px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border 0.3s;
}

    input:focus {
        border-color: #3498db;
        outline: none;
        box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    }

.forgot-password {
    text-align: right;
    margin-bottom: 20px;
}

    .forgot-password a {
        color: #7f8c8d;
        text-decoration: none;
        font-size: 14px;
    }

        .forgot-password a:hover {
            color: #3498db;
        }

.login-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .login-btn:hover {
        background-color: #2980b9;
    }

.divider {
    margin: 25px 0;
    position: relative;
}

    .divider::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background-color: #eee;
        z-index: 1;
    }

    .divider span {
        position: relative;
        z-index: 2;
        background-color: white;
        padding: 0 15px;
        color: #95a5a6;
        font-size: 14px;
    }

.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-btn {
    border: 1px solid #ddd;
    background: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

    .social-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .social-btn img {
        width: 24px;
        height: 24px;
    }

.signup-link {
    color: #7f8c8d;
    font-size: 15px;
}

    .signup-link a {
        color: #3498db;
        text-decoration: none;
        font-weight: 500;
    }
