:root {
    --primary: #36C7F1;
    --primary-dark: #22b5e0;
    --text: #1f2937;
    --text-light: #6b7280;
    --background: #eef8fc;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(
        135deg,
        #eef8fc 0%,
        #d8f4fc 100%
    );
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text);
    padding: 20px;
}

.wrapper {
    width: 100%;
    max-width: 550px;
}

.card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow:
        0 20px 50px rgba(0,0,0,0.08),
        0 5px 15px rgba(0,0,0,0.04);
    text-align: center;
}

.logo-container {
    margin-bottom: 25px;
}

.logo {
    max-width: 240px;
    width: 100%;
    height: auto;
}

h1 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--text);
}

.subtitle {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

form {
    text-align: left;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

input[type="text"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #dbe4ea;
    border-radius: 12px;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: all .3s ease;
}

input[type="text"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(54,199,241,0.15);
}

button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: var(--primary);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

.contact {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
}

.contact h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.contact p {
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 600px) {

    .card {
        padding: 25px;
    }

    h1 {
        font-size: 1.6rem;
    }

    .logo {
        max-width: 180px;
    }
}
.contact a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact a,
.footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact a:hover,
.footer a:hover {
    text-decoration: underline;
}

.footer span {
    color: var(--primary);
    margin: 0 8px;
}