/*
Theme Name: Lestin
Theme URI: https://gaviaspreview.com/wp/lestin/
Author URI: https://themeforest.net/user/gavias
Author: Gaviasthemes Team
Description: The 2023 theme for WordPress is a fully responsive theme that looks great on any device.
Version: 1.1.8
Tested up to: 5.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, right-sidebar, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, sticky-post, theme-options, translation-ready
Text Domain: lestin

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
.wp-caption-text{
   font-weight: 400;
   font-size: 14px;
   font-style: italic;
   color: #3f3836;
}
.gallery-caption{
   font-weight: 500;
}
.bypostauthor{
   text-align: left;
}

/* Tüm formları kapsayan genel stil */
.user-registration-form, 
.ur-form, 
.wpuf-form, 
.wpforms-form, 
.login-form {
    background: #fff; /* Beyaz zemin */
    box-shadow: 0 4px 20px rgba(0,0,0,0.1); /* Hafif gölge */
    border-radius: 12px; /* Köşe yumuşatma */
    padding: 40px; /* İç boşluk */
    max-width: 700px; /* Genişlik sınırı - daha uzun görünüm */
    margin: 50px auto; /* Ortalama */
    display: block;
}

/* Form başlıkları */
.user-registration-form h2,
.ur-form h2,
.wpuf-form h2,
.wpforms-form h2,
.login-form h2 {
    text-align: center;
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 30px;
}

/* Form input ve butonları genişlet */
.user-registration-form input[type="text"],
.user-registration-form input[type="email"],
.user-registration-form input[type="password"],
.user-registration-form input[type="submit"],
.ur-form input[type="text"],
.ur-form input[type="email"],
.ur-form input[type="password"],
.ur-form input[type="submit"],
.wpuf-form input[type="text"],
.wpuf-form input[type="email"],
.wpuf-form input[type="password"],
.wpuf-form input[type="submit"],
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="password"],
.wpforms-form input[type="submit"],
.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="password"],
.login-form input[type="submit"] {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Buton tasarımı */
.user-registration-form input[type="submit"],
.ur-form input[type="submit"],
.wpuf-form input[type="submit"],
.wpforms-form input[type="submit"],
.login-form input[type="submit"] {
    background: #0073aa;
    color: #fff;
    padding: 15px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.user-registration-form input[type="submit"]:hover,
.ur-form input[type="submit"]:hover,
.wpuf-form input[type="submit"]:hover,
.wpforms-form input[type="submit"]:hover,
.login-form input[type="submit"]:hover {
    background: #005f8d;
}