﻿/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background: #000;
    font-family: Arial, sans-serif;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}


.container {
    max-width: 600px;
    width: 100%;
}


/* SUCCESS MESSAGE */
.success {
    background: #1a1a1a;
    padding: 15px 20px;
    border: 1px solid #333;
    color: #ff6600;
    margin-bottom: 20px;
    border-radius: 5px;
    animation: fadeIn 0.6s ease-in-out;
}


/* ANIMATION */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* LOGO */
.logo {
    width: 90%;
    max-width: 350px;
    height: auto;
    margin-bottom: 25px;
}


/* TEXT */
.subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.85;
}


/* FORM */
.form {
    display: flex;
    justify-content: center;
    gap: 10px;
}


.form input {
    width: 60%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}


.form button {
    padding: 12px 25px;
    background: #ff6600;
    border: none;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
}


.form button:hover {
    opacity: 0.9;
}


/* RESPONSIVE */
@media (max-width: 600px) {
    .form {
        flex-direction: column;
        width: 100%;
    }


    .form input, 
    .form button {
        width: 100%;
    }
}