body {
    background-color: #cdd1d1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; 
    margin: 0;
    font-family: Arial, sans-serif;
}

.register-logo {
    width:fit-content; 
    height: fit-content; 
    margin-bottom: 20px;
    object-fit: cover;
}

.register-container {
    background-color: #E0E0E0; 
    padding: 40px; 
    border-radius: 25px; 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    width: 350px;
    max-width: 90%;
    text-align: center;
    animation: fadeIn 0.8s ease-out forwards;
}

.register-container h2 {
    margin-bottom: 30px;
    color: #736b6b; 
    font-size: 36px; 
    font-weight: normal;
}

.form-group {
    margin-bottom: 20px; 
    text-align: left;
}

.form-group label {
    display: block; 
    margin-bottom: 8px; 
    color: #736b6b; 
    font-size: 18px; 
    font-weight: normal;
}

.form-group input[type="text"],
.form-group input[type="password"] {
    width: calc(100% - 20px);
    padding: 15px 10px; 
    border: none; 
    border-radius: 15px;
    background-color: #F0F0F0; 
    font-size: 16px;
    color: #333;
    outline: none;
}

.form-group input[type="submit"] {
    background-color: #4A90E2; 
    color: white;
    padding: 15px 20px; 
    border: none;
    border-radius: 15px; 
    cursor: pointer;
    font-size: 20px;
    font-weight: normal; 
    width: 100%;
    transition: background-color 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: none; 
    margin-top: 30px;
}

.form-group input[type="submit"]:hover {
    background-color: #3A7BD5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.register-link-container,
.Excel-link-container {
    margin-top: 20px;
    text-align: center;
}


.register-link-container p {
    margin: 0;
    padding: 5px;
    color: #6c757d;
}

.register-link-container a,
.Excel-link-container a {
    display: block;
    margin-top: 20px;
    padding: 8px 15px;
    background-color: #28a745; 
    color: white;
    border-radius: 10px;
    width: 50%;
    margin-left: 20%;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.register-link-container a:hover,
.Excel-link-container a:hover {
    background-color: #218838;
    transform: translateY(-1px);
}