﻿@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
}

body {
    background-image: url('/assets/img/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}


.container {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.form-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.form-header {
    background: linear-gradient(135deg, #FBD04B 0%, #e6ac00 100%);
    color: white;
    padding: 15px;
    text-align: center;
    justify-content: center;
    color: #333;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

    .form-header h1 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

        .form-header h1 i {
            margin-right: 10px;
            color: #ffd700;
        }

        .form-header h1 img {
            height: 2.5rem;
            width: auto;
            display: inline-block;
        }

    .form-header p {
        opacity: 1;
        font-size: 1rem;
    }

.form-body {
    padding: 25px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #555;
        font-weight: 500;
        font-size: 0.9rem;
    }

    .form-group input {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e1e5e9;
        border-radius: 10px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: #f8f9fa;
    }

        .form-group input:focus {
            outline: none;
            border-color: #667eea;
            background: white;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

.btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #FBD04B 0%, #e6ac00 100%);
    color: #333;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
        color: #333;
    }

    .btn-primary:active {
        transform: translateY(0);
        color: #333;
    }
