@import url("responsive.css");
/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background-image: url(../img/kingpeluquerialogo.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: rgba(192, 192, 192, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgb(255, 208, 0);
    width: 300px;
}

.form-box {
    display: flex;
    flex-direction: column;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid rgb(255, 208, 0);
    border-radius: 5px;
}

button {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: rgb(255, 208, 0);
}

.create-account-link {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
}

.create-account-link a {
    color: #4CAF50;
    text-decoration: none;
}

.create-account-link a:hover {
    text-decoration: underline;
}

/* Estilos para dispositivos móviles */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }
}
