body {
    background: linear-gradient(to bottom right, #4A90E2, #57C1EB);
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

h2 {
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: #555;
}

input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: 0.3s;
}

input:focus {
    border-color: #4A90E2;
    outline: none;
}

.btn-custom {
    background-color: #ff4d6d;
    color: white;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-custom:hover {
    background-color: #cc0044;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.logo-container img {
    max-width: 200px; /* Ajusta el tamaño según sea necesario */
    height: auto;
}