/* 1. Φόντο που θυμίζει ανοιχτό γκρίζο τσιμέντο */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #e5e5e5;
    background-image: radial-gradient(#d1d1d1 1px, transparent 1px);
    background-size: 20px 20px; /* Μικρά dots για υφή */
    font-family: 'Oswald', sans-serif; /* Αν δεν την έχεις, θα πάρει Arial */

}

/* 2. Η "Κάρτα" - Clean Industrial */
form {
    background: #ffffff;
    padding: 40px;
    width: 340px;
   border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* 3. Τίτλος - Μεγάλος και επιθετικός */
h2 {
    text-align: left;
    color: #1a1a1a;
    text-transform: uppercase;
    font-size: 32px;
    margin: 0 0 30px 0;
    line-height: 0.9;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 10px;
}

/* 4. Inputs */
label {
    font-weight: bold;
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
}

input {
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #ddd;
    background: #f9f9f9;
    font-size: 16px;
    transition: all 0.3s;
    border-radius: 14px;
}

input:focus {
    border-color: #1a1a1a;
    background: #fff;
    outline: none;
}


button {
    padding: 15px;
    background:     #3b3939;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    
    border-radius: 16px;
}


button:hover {
    background: #1a1a1a;
}   