
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 400px;
    background-color: #171717;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.413);
    border-radius: 8px;
    color: white;
}

h4 {
    margin-bottom: 1rem;
    font-weight: bold;
    color: #c5b096;
}

.form-group {
    margin-bottom: 1.5rem;
}


input[type="email"],
input[type="password"],
input[type="text"] {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color: white;
}
input[type="checkbox"] {
    margin-right: 0.5rem;
}

.invalid-feedback {
    color: rgb(253, 68, 68);
    display: none;
    margin-top: 0.5rem;
}

.text-danger{
    color: #fd4444;
    margin-top: 4px;
}

.is-invalid {
    border-color: rgb(246, 48, 48);
}

.btn {
    display: inline-block;
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    color: #fff;
    background-color: #c98e45;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.text-center {
    text-align: center;
}

.text-sm {
    font-size: 0.875rem;
}

.text-primary {
    color: #c98e45;
    text-decoration: none;
}

.text-primary:hover {
    text-decoration: underline;
}

.file{
    width: 200px;
}