/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #FEE3C8;
    color: #662483;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.container {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
}

h1 {
    color: #82368C;
    margin-bottom: 15px;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

button, .btn {
    background: #F39200;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover, .btn:hover {
    background: #F9B233;
}

input[type="file"], input[type="text"] {
    padding: 10px;
    border: 2px solid #A458B0;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 15px;
    font-size: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link {
    color: #82368C;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link:hover {
    color: #A458B0;
}
