body {
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.Container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 400px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Login h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #EC243B;
}

.input-container {
    width: 100%;
    margin-bottom: 15px;
}

.input-container input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
}

.Login button {
    width: 50%;  /* Button width set to 50% */
    padding: 10px;
    margin-left: 25%;  /* Center the button horizontally */
    background-color: #EC243B;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
}

.Login button:hover {
    background-color: #EC243B;;
    text-decoration: underline;
}

.back-to-login-text {
    width: 100%;  /* Ensure full width */
    text-align: center;  /* Center the text */
    margin-top: 15px;
    font-size: 14px;
}

.back-to-login-link {
    color: #EC243B;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.back-to-login-link:hover {
    color: #EC243B;
    text-decoration: underline;
}