﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f5f0;
    /* background-image: url('../images/background-image.png');*/
    /*  no-repeat center center fixed;
    background-size: cover;*/
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1200px;
    /*background-color: rgba(255, 255, 255, 0.9);*/ /* Fondo blanco semi-transparente */
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    height: auto;
}
.left-section {
    background-color: #f9721e;
    color: #fff;
    padding: 4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /*background-image: url('../images/logo-1.PNG');*/
    background-image: url('../images/staybyday.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; /* Ajusta el tamaño del SVG */
}

.right-section {

    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    
}

    .right-section h2 {
        font-size: 2.4rem;
        margin-bottom: 2rem;
        color: #333;
    }

    .right-section form {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        max-width: 400px;
    }

.form-group {
    position: relative;
    display: flex;
    align-items: center;
}

    .form-group i {
        position: absolute;
        left: 1rem;
        font-size: 1.2rem;
        color: #f9721e;
    }

    .form-group input {
        width: 100%;
        padding: 0.8rem 1rem 0.8rem 3rem; /* Espacio para el ícono */
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 1rem;
    }

        .form-group input:focus {
            border-color: #f9721e;
            outline: none;
        }

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

    .form-actions a {
        font-size: 0.9rem;
        color: #f9721e;
        text-decoration: none;
    }

        .form-actions a:hover {
            text-decoration: underline;
        }

.btn {
    background-color: #f9721e;
    color: #fff;
    border: none;
    padding: 0.8rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

    .btn:hover {
        background-color: #e8640b;
    }

.signup-link {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #555;
}

    .signup-link a {
        color: #f9721e;
        text-decoration: none;
    }

        .signup-link a:hover {
            text-decoration: underline;
        }

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto;
    }

    .left-section {
        padding: 2rem;
        text-align: center;
    }

    .right-section {
        padding: 2rem;
    }

        .right-section h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

    .form-group input {
        font-size: 0.9rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    .left-section {
        padding: 1.5rem;
    }

    .right-section {
        padding: 1.5rem;
    }

        .right-section h2 {
            font-size: 1.8rem;
        }

    .form-group input {
        font-size: 0.8rem;
        padding: 0.6rem 1rem 0.6rem 2.5rem;
    }

    .btn {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
}

