﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins',sans-serif;
    background: #0f172a;
    overflow-x: hidden;
    min-height: 100vh;
}

.background {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg,#0f172a,#1e3a8a,#f97316);
    z-index: -2;
}

    .background::after {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        filter: blur(120px);
        top: -150px;
        left: -150px;
    }

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    gap: 60px;
}

.left-panel {
    flex: 1;
    color: white;
    max-width: 520px;
}

.logo img {
    width: 420px;
    height: auto;
}

.left-panel h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.left-panel p {
    color: #dbe4ff;
    line-height: 1.8;
    margin-bottom: 35px;
}

.info-card {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
}

    .info-card span {
        font-size: 28px;
    }

    .info-card h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .info-card p {
        margin: 0;
        color: #d1d5db;
        font-size: 14px;
    }

.right-panel {
    flex: 1;
    display: flex;
    justify-content: center;
}
.form-card {
    width: 100%;
    max-width: 600px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,.30);
}

    .form-card h2 {
        color: #fff;
        font-size: 32px;
        margin-bottom: 10px;
    }

.subtitle {
    color: #dbe4ff;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        color: #fff;
        margin-bottom: 8px;
        font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 15px 18px;
        border: none;
        outline: none;
        border-radius: 14px;
        background: rgba(255,255,255,.92);
        font-size: 15px;
        transition: .3s;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            box-shadow: 0 0 0 3px rgba(249,115,22,.35);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 140px;
    }

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #fff;
    margin: 25px 0;
    font-size: 14px;
}

    .checkbox input {
        margin-top: 4px;
    }

button {
    width: 100%;
    border: none;
    cursor: pointer;
    border-radius: 14px;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg,#f97316,#ea580c);
    transition: .30s;
}

    button:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(249,115,22,.35);
    }

#successMessage {
    text-align: center;
    color: #fff;
    padding: 30px 10px;
}

    #successMessage h2 {
        margin-bottom: 15px;
        color: #22c55e;
    }

    #successMessage p {
        color: #e5e7eb;
        line-height: 1.8;
    }

@media(max-width:1000px) {

    .container {
        flex-direction: column;
        padding: 25px;
    }

    .left-panel {
        max-width: 100%;
        text-align: center;
    }

        .left-panel h1 {
            font-size: 38px;
        }

    .form-card {
        padding: 30px;
    }
}