@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

html {
    scroll-behavior: smooth;
}

.btnperfil {
    color: #86bca4;
    border: 2px solid #86bca4;
    border-radius: 50px;
    padding: 6px 20px;
    transition: all 0.3s ease;
    margin-left: 12px;
    text-decoration: none;
}

.btnperfil:hover {
    background-color: #86bca4;
    color: #fff;
    text-decoration: none;
}

::selection {
    background-color: #c3e8dc;
}

* {
    box-sizing: border-box;
    font-family: Nunito, Arial, sans-serif;
}

body {
    margin: 0;
    overflow-y: auto;
}

.registro-container {
    display: flex;
    min-height: 100vh;
}

.left-panel {
    background: #dff1e7;
    width: 35%;
    padding: 20px;
    border-top-right-radius: 35px !important;
    position: relative;
}

.header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-back {
    position: absolute;
    top: 20px;
    left: 25px;
    color: #333;
    font-size: 20px;
    transition: .2s;
}

.btn-back:hover {
    color: #000;
}

.logo {
    height: 40px;
}

.vet-img {
    width: 80%;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.form-panel {
    width: 65%;
    padding: 60px;
    padding-bottom: 80px;
    border-top-left-radius: 25px;
}

h1 {
    margin-bottom: 10px;
    font-weight: 700;
}

hr {
    border: none !important;
    height: 5px !important;
    background: #b4cfcb;
    border-radius: 10px !important;
    margin-bottom: 30px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    margin-top: 10px;
}

input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 2px solid #aaa;
    margin-bottom: 30px;
    font-size: 15px;
}

.row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.row > div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.password {
    position: relative;
}

.eye {
    position: absolute;
    right: 15px;
    top: 40px;
    cursor: pointer;
    font-size: 20px;
    color: #686868;
}

.radio-group {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.radiolab {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
}

.radiolab input {
    display: none;
}

.radio {
    width: 18px;
    height: 18px;
    border: 2px solid #6bbfae;
    border-radius: 50%;
    position: relative;
}

.radiolab input:checked + .radio::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #6bbfae;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-crear {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    background: #a3d5c7;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-crear:hover {
    background: #8fcbb6;
}

.login {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.login a {
    color: #000;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 900px) {
    .registro-container {
        flex-direction: column;
    }
    .left-panel {
        display: none;
    }
    .vet-img {
        display: none;
    }
    .form-panel {
        width: 100%;
        padding: 30px;
        padding-bottom: 80px;
    }
    .row {
        flex-direction: column;
    }
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
    .login a {
        display: block;
    }
}