* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #fff;
}

.container {
    display: flex;
    height: 100vh;
}

/* PANEL IZQUIERDO */
.left-panel {
    flex: 1;
    padding: 50px 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home {
    color: #777;
    font-size: 14px;
    text-decoration: none;
}

.CuadroLogo {
    margin-top: -150px;
    margin-left: 10px;
    
}

.CuadroLogo img{
    height: 260px;
    width: auto;
}

.form-section {
    margin-top: -200px;
    max-width: 380px;
}

.small-title {
    font-size: 12px;
    letter-spacing: 1px;
    color: #888;
}

.main-title {
    font-size: 30px;
    margin: 10px 0 30px;
}

label {
    font-size: 13px;
    color: #555;
}

.input-group {
    margin: 8px 0 20px;
}

input {
    width: 100%;
    padding: 13px 18px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
}

.btn-row {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.btn-outline {
    flex: 1;
    padding: 12px 0;
    border-radius: 25px;
    border: 1.5px solid #00b4d8;
    background: transparent;
    color: #00b4d8;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    flex: 1;
    padding: 12px 0;
    border-radius: 25px;
    border: none;
    background: #00b4d8;
    color: white;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0px 8px 18px rgba(0,180,216,0.35);
}

.options {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    font-size: 13px;
    color: #999;
}

.remember input {
    margin-right: 6px;
}

.footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #aaa;
}

/* PANEL DERECHO: FOTO */
.right-panel {
    flex: 1;
    background-image: url("bg.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    background-repeat: no-repeat;
    overflow: hidden;
}

.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(transparent, rgba(0,0,0,0.4));
}

.profile {
    position: absolute;
    bottom: 35px;
    left: 40px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: auto;
    height: 200px;
    border-radius: 50%;
}


