body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}
.container {
    max-width: 400px;
    margin-top: 100px;
    padding: 30px;
    background-color: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
.logo {
    width: 100px;
    height: 100px;
    background-color: #ffffff;
    /*border-radius: 50%;*/
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1e1e1e;
    font-weight: bold;
}
.btn-custom {
    background-color: #ff9800;
    border: none;
}
.btn-custom:hover {
    background-color: #e68900;
}
.form-control:focus {
    border-color: #ff9800;
    box-shadow: 0 0 0 0.2rem rgba(255, 152, 0, 0.25);
}
.title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}
/* Error Message Styling */
.error-message {
    display: none;
}
/* Link Styling */
.link-section {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}
.link-section a {
    color: #ff9800;
    text-decoration: none;
}
.link-section a:hover {
    text-decoration: underline;
}
/* Modal Content Styling */
.modal-content {
    background-color: #1e1e1e;
    color: #ffffff;
}
/* Success Message Styling */
.success-message {
    display: none;
}
