/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container Styles */
.container {
    max-width: 500px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Logo Styles */
.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

/* Heading Styles */
h3 {
    color: #333333;
    margin-bottom: 20px;
}

/* Form Group Styles */
.form-group {
    text-align: left;
    margin-bottom: 15px;
}

/* Label Styles */
label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
    color: #333333;
}

/* Input Styles */
input[type="password"],
input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 14px;
}

/* Button Styles */
.btn-primary {
    background-color: #ff8200;
    border: none;
    border-radius: 4px;
    padding: 12px;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: #e67300;
}
