body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}

#login-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#logo {
    max-width: 200px;
    display: block;
    margin: 0 auto 20px;
}

input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: border 0.3s;
    box-sizing: border-box;
    background-color: #f9f9f9;
}

input:focus {
    border-color: #008CBA;
    outline: none;
}

button {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    background-color: #008CBA;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #006699;
}

.custom-success-title, .custom-error-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.custom-success-text, .custom-error-text {
    font-size: 18px;
}

.custom-button {
    background-color: #0073e6;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-size: 16px;
}
