* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-image: url("imgs/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    margin-right: 120vh;
}

.form-container {
   background: #ffffffa3;
    padding: 37.5px 50px; /* 25% a mais que 30px 40px */
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 375px; /* 25% a mais que 300px */
    text-align: center;
}

.form-container h2 {
    margin-bottom: 20px;
    color: #333;
}

.form-container label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    color: #555;
    font-size: 14px;
}

.form-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: border-color 0.3s;
}

.form-container input:focus {
    border-color: #1e1e1e;
    outline: none;
}

.form-container button {
    width: 100%;
    padding: 12px;
    background: #1e1e1e;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.form-container button:hover {
    background: #1e1e1e;
    transform: translateY(-2px);
}

.form-container .switch-form {
    margin-top: 15px;
    font-size: 14px;
}

.form-container .switch-form a {
    color: #1e1e1e;
    text-decoration: none;
}

.form-container .switch-form a:hover {
    text-decoration: underline;
}

