* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    font-family: 'Inter', sans-serif;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

header {
    width: 100%;
}

.adminContent {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.adminContent h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #333;
}

.formAdmin {
    width: 100%;
    max-width: 600px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease;
}

.labelInput {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.labelInput label {
    margin-bottom: 6px;
    font-weight: 600;
    color: #444;
}

.labelInput input {
    width: 100%;
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.labelInput input:focus {
    border-color: #4a90e2;
    outline: none;
}

.btnSubmit {
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    background-color: #4a90e2;
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btnSubmit:hover {
    background-color: #357abd;
}