/* Base Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Times New Roman", Times, serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a; /* Dark fallback */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: opacity 1s ease;
    opacity: 0; /* Hidden until JS loads background */
}

body.loaded {
    opacity: 1;
}

.container {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    color: white;
    text-align: center;
    backdrop-filter: blur(5px);
}

.title { font-size: 2rem; margin-bottom: 10px; }
.subtitle { margin-bottom: 25px; opacity: 0.9; }

.input-group { text-align: left; margin-bottom: 15px; }
label { display: block; margin-bottom: 5px; font-weight: bold; }

input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
}

button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
    margin-top: 10px;
}

button:hover { transform: scale(1.02); }

.btn-primary { background-color: orange; color: white; }
.btn-secondary { background-color: rgb(10, 204, 52); color: white; }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-section p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.social-icons img {
    height: 45px;
    width: 45px;
    padding: 8px; /* Space between the icon and the white edge */
    background-color: white; /* The white background you requested */
    border-radius: 50%; /* Makes the background a perfect circle */
    object-fit: contain; /* Ensures the icon doesn't stretch */
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Adds depth */
}

.social-icons img:hover {
    transform: scale(1.15) translateY(-5px);
    background-color: #f0f0f0; /* Slight grey on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

a { color: orange; text-decoration: none; }
